outer join - meaning and definition. What is outer join
Diclib.com
Online Dictionary

What (who) is outer join - definition

SQL CLAUSE
Outer join; Inner join; Join algorithm; Cross join; Equivalence join; Full outer join; Left outer join; Right outer join; Semi join; SQL join; Sql join; Database join; Join (sql); Join (database); Equijoin; Group join; Left join; Right join; Cartesian join; Table join; Query (database); Natural join (SQL); JOIN (SQL); Self-join; Join sql; Join statement; Inner join sql; Sql inner join; Equi-join; Straight join
  • A Venn Diagram representing the Left Join SQL statement between tables A and B.
  • 
A Venn Diagram representing the Right Join SQL statement between tables A and B.
  • A Venn Diagram representing the Full Join SQL statement between tables A and B.

outer join         
<database> A less commonly used variant of the inner join relational database operation. An inner join selects rows from two tables such that the value in one column of the first table also appears in a certain column of the second table. For an outer join, the result also includes all rows from the first operand ("left outer join"), or the second operand ("right outer join"), or both ("full outer join"). A field in a result row will be null if the corresponding input table did not contain a matching row. For example, if we want to list all employees and their employee number, but not all employees have a number, then we could say (in SQL-92 syntax, as used by {Microsoft SQL Server}): SELECT employee.name, empnum.number FROM employee LEFT JOIN empnum ON employee.id = empnum.id or, in Sybase syntax: SELECT employee.name, empnum.number FROM employee, empnum WHERE employee.id *= empnum.id The "*" on the left means "left outer join". "*=*" would be a full outer join. In Oracle syntax: SELECT employee.name, empnum.number FROM employee, empnum WHERE employee.id = empnum.id (+) Note that the "(+)" on the right means "left outer join". These all mean that all rows from the left-hand "employee" table will appear in the result, even if there is no match for their ID in the empnum table. Where there is no empnum.id equal to a given employee.id, a result row is output anyway but with all result columns from the empnum table null (empnum.number in this case). (2004-11-12)
left outer join         
full outer join         

Wikipedia

Join (SQL)

A join clause in SQL – corresponding to a join operation in relational algebra – combines columns from one or more tables into a new table. Informally, a join stitches two tables and puts on the same row records with matching fields : INNER, LEFT OUTER, RIGHT OUTER, FULL OUTER and CROSS.